home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / tokyo / east.dir / 00011_Script_initE < prev    next >
Text File  |  1999-04-26  |  360b  |  20 lines

  1. global Ecounter, EsprtList
  2.  
  3. on exitFrame
  4.   set EsprtList=[]
  5.   set Ecounter=9
  6.   
  7.   repeat with i = 9 to 18
  8.     puppetSprite i, true
  9.     set the blend of sprite i=0
  10.   end repeat
  11.   
  12.   puppetSprite 38, true
  13.   set the loc of sprite 38 to point(-100,-100)
  14. end
  15.  
  16. on keydown
  17.   if ( (the key = "q") or (the key = "Q") ) then
  18.     play done
  19.   end if
  20. end